home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / gtk-2.0 / gtk / gtktextchild.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-04-25  |  2.8 KB  |  78 lines

  1. /* GTK - The GIMP Toolkit
  2.  * gtktextchild.h Copyright (C) 2000 Red Hat, Inc.
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Lesser General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Lesser General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19.  
  20. /*
  21.  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
  22.  * file for a list of people on the GTK+ Team.  See the ChangeLog
  23.  * files for a list of changes.  These files are distributed with
  24.  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  25.  */
  26.  
  27. #ifndef __GTK_TEXT_CHILD_H__
  28. #define __GTK_TEXT_CHILD_H__
  29.  
  30. #include <glib-object.h>
  31.  
  32. G_BEGIN_DECLS
  33.  
  34. /* A GtkTextChildAnchor is a spot in the buffer where child widgets
  35.  * can be "anchored" (inserted inline, as if they were characters).
  36.  * The anchor can have multiple widgets anchored, to allow for multiple
  37.  * views.
  38.  */
  39.  
  40. typedef struct _GtkTextChildAnchor      GtkTextChildAnchor;
  41. typedef struct _GtkTextChildAnchorClass GtkTextChildAnchorClass;
  42.  
  43. #define GTK_TYPE_TEXT_CHILD_ANCHOR              (gtk_text_child_anchor_get_type ())
  44. #define GTK_TEXT_CHILD_ANCHOR(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GTK_TYPE_TEXT_CHILD_ANCHOR, GtkTextChildAnchor))
  45. #define GTK_TEXT_CHILD_ANCHOR_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TEXT_CHILD_ANCHOR, GtkTextChildAnchorClass))
  46. #define GTK_IS_TEXT_CHILD_ANCHOR(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GTK_TYPE_TEXT_CHILD_ANCHOR))
  47. #define GTK_IS_TEXT_CHILD_ANCHOR_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TEXT_CHILD_ANCHOR))
  48. #define GTK_TEXT_CHILD_ANCHOR_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TEXT_CHILD_ANCHOR, GtkTextChildAnchorClass))
  49.  
  50. struct _GtkTextChildAnchor
  51. {
  52.   GObject parent_instance;
  53.  
  54.   gpointer segment;
  55. };
  56.  
  57. struct _GtkTextChildAnchorClass
  58. {
  59.   GObjectClass parent_class;
  60.  
  61.   /* Padding for future expansion */
  62.   void (*_gtk_reserved1) (void);
  63.   void (*_gtk_reserved2) (void);
  64.   void (*_gtk_reserved3) (void);
  65.   void (*_gtk_reserved4) (void);
  66. };
  67.  
  68. GType gtk_text_child_anchor_get_type (void) G_GNUC_CONST;
  69.  
  70. GtkTextChildAnchor* gtk_text_child_anchor_new (void);
  71.  
  72. GList*   gtk_text_child_anchor_get_widgets (GtkTextChildAnchor *anchor);
  73. gboolean gtk_text_child_anchor_get_deleted (GtkTextChildAnchor *anchor);
  74.  
  75. G_END_DECLS
  76.  
  77. #endif
  78.